-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsongs.html
More file actions
86 lines (80 loc) · 2.75 KB
/
songs.html
File metadata and controls
86 lines (80 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Nunito&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/Singer Website/Public/style.css" />
<title>Website Navbar</title>
</head>
<body>
<!-- Navigation -->
<div class="nav-container">
<nav class="navbar">
<h2 id="navbar-logo">IMRAN KHAN</h2>
<div class="menu-toggle" id="mobile-menu">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
<ul class="nav-menu">
<li><a href="/index.html" class="nav-links">Home</a></li>
<li><a href="./about.html" class="nav-links">About</a></li>
<li>
<a href="./sign-up.html" class="nav-links nav-links-btn">Sign Up</a>
</li>
</ul>
</nav>
</div>
<!-- Songs Section -->
<div class="Songs" id="Songs">
<h1>Songs</h1>
<div class="Songs__wrapper">
<div class="Songs__card">
<div class="iframe-container">
<iframe
src="https://www.youtube.com/embed/uuCFRaFWjwY"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="Songs__card">
<div class="iframe-container">
<iframe
src="https://www.youtube.com/embed/JYodEWUdIso"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="Songs__card">
<div class="iframe-container">
<iframe
src="https://www.youtube.com/embed/iP872SycxjI"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
<div class="Songs__card">
<div class="iframe-container">
<iframe
src="https://www.youtube.com/embed/qRTG8uF2ES4"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
</div>
</div>
</div>
<script src="/Singer Website/JavaScript/app.js"></script>
</body>
</html>